home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / database / postgres / appgen-0.2-a / appgen-0 / AppGEN / src / Makefile
Encoding:
Makefile  |  1996-07-11  |  232 b   |  14 lines

  1. SUBDIRS= lib tools compiler java
  2.  
  3.  
  4. all:    
  5.     set -e; for i in $(SUBDIRS); do \
  6.       test ! -d $$i || \
  7.         { $(MAKE) -C $$i; }; done
  8.  
  9. clean:
  10.     set -e; for i in $(SUBDIRS); do \
  11.       test ! -d $$i || \
  12.         { $(MAKE) -C $$i clean; }; done
  13.  
  14.